54a2a538cb6b00f3b441d4f23865784a82f7d165,app/src/main/java/com/me/silencedut/nbaplus/app/AppService.java,AppService,initNews,#number#String#,66
Before Change
}
public void initNews(int taskId,String type) {
getCompositeSubscription(taskId);
mCompositeSubscription.add(RxNews.initNews(type));
}
public void updateNews(int taskId,String type) {
After Change
}
public void initNews(int taskId,String type) {
getCompositeSubscription(taskId).add(RxNews.initNews(type));
}
public void updateNews(int taskId,String type) {